home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / test / x.c < prev    next >
C/C++ Source or Header  |  1992-11-23  |  132b  |  13 lines

  1.  
  2. #include <stdio.h>
  3.  
  4. main(ac, av)
  5. char *av[];
  6. {
  7.     short i;
  8.     for (i = 1; i < 1000; ++i)
  9.     puts("hello world");
  10.     return(0);
  11. }
  12.  
  13.